﻿@font-face {
    font-family: 'Montserrat';
    src: url(../../../dist/fonts/Montserrat-Medium.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url(../../../dist/fonts/Montserrat-bold.ttf) format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url(../../../dist/fonts/Poppins-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

p {
    font-family: 'Poppins', sans-serif;
}

.h3 {
    font-family: 'Montserrat', sans-serif;
}

label {
    font-family: 'Montserrat', sans-serif;
}

/* changed from core background-color - J CASEY 20240903 */
.card-header {
    background-color: #355669;
    color: white;
    border-bottom: 5px solid;
    border-color: #00a0af !important;
}

/* added - JCASEY 20240903 */
a, a:hover {
    color: black;
}

/* added - JCASEY 20240903 */
.logo {
    width: 150px !important;
    height: 60px !important;
    padding-top: 5px;
    padding-bottom: 5px;
}

/* added - JCASEY 20240903 */
.navbar-brand {
    display: none;
}

/* added - JCASEY 20240917 */
.navbar {
    background-color: #355669 !important;
    border-bottom: 5px solid;
    border-color: #00a0af !important;
}

.nav-link {
    background-color: #de0001;
    color: white;
}

.nav-pills .nav-link {
    border-radius: unset;
}

.nav-link.active, .nav-link:hover {
    background-color: #a90000 !important;
    color: white !important;
}

/* changed from core background-color, added override on border - J CASEY 20240903 */
.btn-primary {
    background-color: #355669 !important;
    border-color: #355669;
    color: #ffffff !important;
}

/* ADDED to override colours - J CASEY 20240903 */
.btn-secondary {
    background-color: #355669 !important;
    border-color: #355669;
    color: #ffffff !important;
}

.progress-stages {
    height: 2px;
    position: absolute;
    left: 20px;
    right: 35px;
    top: 25px;
}

    .progress-stages .progress-bar-stages {
        width: 0;
        background-color: green;
    }

        .progress-stages .progress-bar-stages.stage-2 {
            width: 0;
            -webkit-animation: width-half 1s forwards ease;
            -moz-animation: width-half 1s forwards ease;
            -o-animation: width-half 1s forwards ease;
            animation: width-half 1s forwards ease;
        }

        .progress-stages .progress-bar-stages.stage-3 {
            width: 50%;
            -webkit-animation: width-full 1s forwards ease;
            -moz-animation: width-full 1s forwards ease;
            -o-animation: width-full 1s forwards ease;
            animation: width-full 1s forwards ease;
        }

        .progress-stages .progress-bar-stages.stage-4 {
            width: 100%;
        }

.stages {
    padding: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

    .stages .stage {
        list-style-type: none;
        text-transform: uppercase;
        text-align: center;
        font-size: 0.8em;
        float: left;
        position: relative;
        border-radius: 50%;
    }

        .stages .stage:before {
            content: "";
            width: 50px;
            height: 50px;
            line-height: 50px;
            display: block;
            background: lightgray;
            border-radius: 50%;
            margin: 0 auto 10px auto;
        }

        .stages .stage:first-child:after {
            content: none;
        }

        .stages .stage.completed:before {
            background: green;
            color: white;
        }

        .stages .stage.completed:after {
            background: green;
        }

        .stages .stage.active:before {
            -webkit-animation: active-stage-pulse .4s .6s forwards linear;
            -moz-animation: active-stage-pulse .4s .6s forwards linear;
            -o-animation: active-stage-pulse .4s .6s forwards linear;
            animation: active-stage-pulse .4s .6s forwards linear;
        }

        .stages .stage.active:after {
            background: green;
        }

        .stages .stage .stage-number {
            position: absolute;
            font-size: 14px;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            line-height: 50px;
            font-weight: 600;
        }

        .stages .stage.completed .stage-number {
            color: white;
        }

.relative {
    position: relative;
}

.input-placeholder {
    position: absolute;
    right: 22px;
    top: 6px;
    line-height: 1.42857143;
    font-size: 14px;
    color: #999999;
}

/*animations*/
@-webkit-keyframes width-half {
    to {
        width: 50%;
    }
}

@-webkit-keyframes width-full {
    to {
        width: 100%;
    }
}

@-webkit-keyframes active-stage-pulse {
    0% {
        box-shadow: 0 0 0 0 white, 0 0 0 0 green;
    }

    20% {
        box-shadow: 0 0 0 0 white, 0 0 0 1px green;
    }

    40% {
        box-shadow: 0 0 0 0 white, 0 0 0 2px green;
    }

    60% {
        box-shadow: 0 0 0 1px white, 0 0 0 3px green;
    }

    66% {
        box-shadow: 0 0 0 2px white, 0 0 0 4px green;
    }

    100% {
        box-shadow: 0 0 0 3px white, 0 0 0 5px green;
    }
}

@-moz-keyframes width-half {
    to {
        width: 50%;
    }
}

@-moz-keyframes width-full {
    to {
        width: 100%;
    }
}

@-moz-keyframes active-stage-pulse {
    0% {
        box-shadow: 0 0 0 0 white, 0 0 0 0 green;
    }

    20% {
        box-shadow: 0 0 0 0 white, 0 0 0 1px green;
    }

    40% {
        box-shadow: 0 0 0 0 white, 0 0 0 2px green;
    }

    60% {
        box-shadow: 0 0 0 1px white, 0 0 0 3px green;
    }

    66% {
        box-shadow: 0 0 0 2px white, 0 0 0 4px green;
    }

    100% {
        box-shadow: 0 0 0 3px white, 0 0 0 5px green;
    }
}

@-o-keyframes width-half {
    to {
        width: 50%;
    }
}

@-o-keyframes width-full {
    to {
        width: 100%;
    }
}

@-o-keyframes active-stage-pulse {
    0% {
        box-shadow: 0 0 0 0 white, 0 0 0 0 green;
    }

    20% {
        box-shadow: 0 0 0 0 white, 0 0 0 1px green;
    }

    40% {
        box-shadow: 0 0 0 0 white, 0 0 0 2px green;
    }

    60% {
        box-shadow: 0 0 0 1px white, 0 0 0 3px green;
    }

    66% {
        box-shadow: 0 0 0 2px white, 0 0 0 4px green;
    }

    100% {
        box-shadow: 0 0 0 3px white, 0 0 0 5px green;
    }
}

@keyframes width-half {
    to {
        width: 50%;
    }
}

@keyframes width-full {
    to {
        width: 100%;
    }
}

@keyframes active-stage-pulse {
    0% {
        box-shadow: 0 0 0 0 white, 0 0 0 0 green;
    }
    /*20% {
        box-shadow: 0 0 0 0 white, 0 0 0 1px green;
    }*/
    40% {
        box-shadow: 0 0 0 0 white, 0 0 0 2px green;
    }
    /*60% {
        box-shadow: 0 0 0 1px white, 0 0 0 3px green;
    }

    80% {
        box-shadow: 0 0 0 2px white, 0 0 0 4px green;
    }*/
    100% {
        box-shadow: 0 0 0 3px white, 0 0 0 5px green;
    }
}

.page-login .list-unstyled li {
    margin-bottom: 10px;
}

.eq-input-error {
    position: relative;
    margin-left: 8px;
}

    .eq-input-error .code-input-label {
        color: #000;
    }

    .eq-input-error:before {
        content: '';
        position: absolute;
        left: -15px;
        width: 3px;
        height: 100%;
        background: #dc3545;
    }


.input-validation-error {
    border: 1px solid red;
}

.code-input-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
}

.inline-code-input {
    width: 7%;
    border: 0;
    left: 0;
    border-bottom: 1px solid #121212;
    padding: 0.375rem;
}

.display-error {
    font-family: 'Montserrat', sans-serif;
    border-left: 5px solid red;
    font-weight: bold;
    font-size: 1rem;
}

.field-validation-error {
    color: #ED2724;
}

fieldset.eq-input-error .eq-input-error {
    margin-left: 0;
}


    fieldset.eq-input-error .eq-input-error:before {
        display: none;
    }

.error-message {
    color: #ED2724;
}

.small {
    margin: 0;
}

input {
    border-radius: 5px !important;
    -webkit-user-select: text;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.fit-image {
    object-fit: cover;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100vh;
}

.brand-container {
    padding: 0;
    position: relative;
}

.brand {
    min-width: 100%;
    position: absolute;
    top: 15%;
    color: #fff;
}

    .brand img {
        width: 80px;
        height: 80px;
    }

    .brand .title {
        font-size: 6rem;
    }

.brand-title {
    font-family: Arial;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
}

.step-title {
    font-size: 4rem;
    margin: 5rem 0;
    min-height: 0.6em;
}

.title {
    font-size: 3.5rem;
}

.send-again-button {
    background: none;
    color: blue;
    border: none;
}


/*Stepper Component*/
.stepper-container {
}

.line {
    width: 2px;
    min-height: 60px;
    background-color: lightgrey !important;
}

.step {
    display: flex;
    justify-content: start;
}

    .step.active .step-text p {
        font-weight: bold;
        color: #000 !important;
    }

.circle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 1rem;
}

.circle {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #8C8C8C;
    height: 1rem;
    width: 1rem;
}

.step.active .circle-container .circle {
    border: 2px solid #5CB85C;
}

.step.complete .circle-container .circle {
    background-color: #5CB85C;
    border: 1px solid #5CB85C;
    color: #fff;
}

.step.complete .circle-container .circle ol {
    margin-bottom: 0;
    padding-left: 0;
}

.progress-bar-wrapper {
    display: none;
}

.lead {
    white-space: nowrap;
}


@media only screen and (min-device-width: 769px) and (max-device-width: 1040px) {
    .lead {
        font-size: 90%;
    }
}

@media only screen and (max-width: 768px) {
    .eq-btn-767-w100 {
        width: 100%;
        margin-top: 0.5rem;
    }
}


@media only screen and (max-width: 991px) {
    .fit-image{
        display: none;
    }

    .title {
        display: none;
    }

    .brand {
        position: static;
        margin-top: 1rem;
    }

    .eq-btn-991-w100 {
        width: 100%;
        margin-top: 0.5rem;
    }

    .progress-bar-wrapper {
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: #f0f0f0;
        border-radius: 5px;
        padding: 2rem 0.5rem;
    }

    .stepper-wrapper {
        display: none;
    }

    .text-center {
        margin: 0;
        padding: 0;
        color: #000;
    }

    .progress-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: flex-end;
        align-items: flex-end;
    }

    .bold {
        font-weight: bold;
        font-size: 1.3rem;
    }

    .radial-stepper-container {
        position: relative;
    }

    .step-text-centre {
        position: absolute;
        top: 42%;
        right: 32%;
    }

    .radial-stepper {
        height: 7rem;
        width: 7rem;
    }

    .complete-form {
        background-color: #5CB85C;
        padding: 20px;
        border-radius: 50%;
        color: #fff;
    }

    .complete-icon {
        font-size: 1.3rem;
    }
}

/*End Stepper Component*/


@media only screen and (min-width: 770px) and (max-width: 1355px) {
    .brand .title {
        font-size: 4rem;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1017px) {
    .brand .title {
        font-size: 2rem;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .eq-btn-1199-w100 {
        width: 100%;
        margin-top: 0.5rem;
    }
}

    @media (max-width: 992px) {
        #stepper {
            display: block;
            min-width: 100%;
        }

        #form {
            display: block;
        }
    }

    .password-check.complete {
        color: #5CB85C;
    }

    .password-req-text {
        padding: 0;
        margin: 0;
    }

    #password-visibility, #password-visibility-confirmation {
        position: absolute;
        right: 10px;
        top: 12px;
        cursor: pointer
    }


.input-wrapper {
    position: relative;
}

#search-box {
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer
}

.employer-list {
    background-color: #f6f6f6;
    padding: 8px;
    max-height: 11rem;
    overflow: auto;
}

.employer {
    padding: 8px;
}

.employer:hover {
    background-color: lightgray;
    cursor: pointer;
}

/*used for printing page*/
@media print {
    /* use it for all elements that you don't want to show in printing */
    .no-print {
        display: none;
    }

    /* use it for all elements that you want to include during printing */
    .print-only {
        display: block;
    }
}